-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support parallelstore csi driver #2203
base: master
Are you sure you want to change the base?
feat: support parallelstore csi driver #2203
Conversation
Signed-off-by: drfaust92 <[email protected]>
/gcbrun |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the contribution @DrFaust92!
variable "parallelstore_csi_driver" { | ||
type = bool | ||
description = "Whether the Parallelstore CSI driver Addon is enabled for this cluster." | ||
default = false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As there is a dynamic block using a for_each
, could the default be made null
so this is optional?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will check
@@ -388,6 +388,14 @@ resource "google_container_cluster" "primary" { | |||
} | |||
} | |||
|
|||
dynamic "parallelstore_csi_driver_config" { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think we need to add for Autopilot clusters as for them it's enabled by default?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will check
No description provided.